From df096a1e19f14d7ebba8568440bd42cd707ce419 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 10 Oct 2004 22:40:58 +0000 Subject: [PATCH] Fix brainfart that broke options on insertArray() --- includes/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Database.php b/includes/Database.php index e0f534caee..2d6c87d0b0 100644 --- a/includes/Database.php +++ b/includes/Database.php @@ -716,7 +716,7 @@ class Database { * @todo document */ function insertArray( $table, $a, $fname = 'Database::insertArray', $options = array() ) { - return $this->insert( $table, $a, $fname = 'Database::insertArray', $options = array() ); + return $this->insert( $table, $a, $fname, $options ); } /** -- 2.20.1